Skip to content

Commit

Permalink
Revert unicode fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ntcho committed Dec 8, 2020
1 parent 97c4a13 commit b1340c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "GameManager.h"

#include <Windows.h>
// #include <Windows.h>

#pragma execution_character_set("utf-8")
// #pragma execution_character_set("utf-8")

// global variables
int score = 0;
Expand All @@ -12,7 +12,7 @@ int high_score = 0;

int main()
{
SetConsoleOutputCP(65001);
// SetConsoleOutputCP(65001);

GameManager game; // handles everything (user input, rendering, etc.) with initialization

Expand Down

0 comments on commit b1340c2

Please sign in to comment.