summaryrefslogtreecommitdiff
path: root/hk21/game
diff options
context:
space:
mode:
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)