summaryrefslogtreecommitdiff
path: root/hk21/game
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-03-22 19:48:21 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-03-22 19:48:21 +0100
commit66cab5910166470f2479a03c3a95d5591c6a3a9d (patch)
tree279da930afab4efee9f9df59ce5bfffa3046e0af /hk21/game
parente5488ec6f523decee12923f3a48000102b6ed489 (diff)
Upgrade asl to 0.2.0
Diffstat (limited to 'hk21/game')
-rw-r--r--hk21/game/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/hk21/game/main.cpp b/hk21/game/main.cpp
index 527235d..42b3b7a 100644
--- a/hk21/game/main.cpp
+++ b/hk21/game/main.cpp
@@ -22,7 +22,7 @@ int SDL_main(int /* argc */, char* /* argv */[])
ASL_LOG_ERROR("Couldn't initialize GPU: {}", gpu_opt);
return 1;
}
- auto gpu = ASL_MOVE(gpu_opt).value();
+ auto gpu = std::move(gpu_opt).value();
bool running = true;
while (running)