button to restore default window size and position (#234)

This commit is contained in:
bdamja
2026-04-05 12:31:28 -06:00
parent 8f367a9953
commit d2ce53d5d4
2 changed files with 10 additions and 2 deletions
+2 -2
View File
@@ -269,8 +269,8 @@ int game_main(int argc, char* argv[]) {
config.appName = "Dusk";
config.windowPosX = -1;
config.windowPosY = -1;
config.windowWidth = 608 * 2;
config.windowHeight = 448 * 2;
config.windowWidth = FB_WIDTH * 2;
config.windowHeight = FB_HEIGHT * 2;
config.desiredBackend = ParseAuroraBackend(parsed_arg_options["backend"].as<std::string>());
config.logCallback = &aurora_log_callback;
config.logLevel = (AuroraLogLevel)parsed_arg_options["log-level"].as<uint8_t>();