diff options
author | rtk0c <[email protected]> | 2022-04-19 12:44:29 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-19 12:44:29 -0700 |
commit | d78a55de5003dbb040f1d1c369409e63a2c806d8 (patch) | |
tree | 5d3857ff25400cede18d748011144f45efffc1f4 /source/Player.cpp | |
parent | 6b56f7d75f6b2ef54ea855b6651a2be1307f34c0 (diff) |
Changeset: 15 Fix imgui include path, fix invalid #pragma's
Diffstat (limited to 'source/Player.cpp')
-rw-r--r-- | source/Player.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Player.cpp b/source/Player.cpp index 47c3ccc..f56d6ea 100644 --- a/source/Player.cpp +++ b/source/Player.cpp @@ -63,7 +63,7 @@ void Player::HandleKeyInput(int key, int action) { } } -#pragma macro_push("PLAYERKEYBINDS_DO_IO") +#pragma push_macro("PLAYERKEYBINDS_DO_IO") #undef PLAYERKEYBINDS_DO_IO #define PLAYERKEYBINDS_DO_IO(function, fieldPrefix) \ function(file, "left=%d\n", fieldPrefix keybinds.keyLeft); \ @@ -98,4 +98,4 @@ bool Player::SaveToFile() { return true; } -#pragma macro_pop("PLAYERKEYBINDS_DO_IO") +#pragma pop_macro("PLAYERKEYBINDS_DO_IO") |