From 9d3d8d3f0e67bd5635857339a50619c1dbfe04e0 Mon Sep 17 00:00:00 2001 From: daiki8 Date: Sun, 5 Jul 2020 20:58:35 +0900 Subject: [PATCH] Change draw color --- Chapter01/Game.cpp | 4 ++-- Chapter01/Game.vcxproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Chapter01/Game.cpp b/Chapter01/Game.cpp index 3b18199e..48509206 100644 --- a/Chapter01/Game.cpp +++ b/Chapter01/Game.cpp @@ -192,11 +192,11 @@ void Game::UpdateGame() void Game::GenerateOutput() { - // Set draw color to blue + // Set draw color to right blue SDL_SetRenderDrawColor( mRenderer, 0, // R - 0, // G + 255, // G 255, // B 255 // A ); diff --git a/Chapter01/Game.vcxproj b/Chapter01/Game.vcxproj index e16204f8..4570ce44 100644 --- a/Chapter01/Game.vcxproj +++ b/Chapter01/Game.vcxproj @@ -21,7 +21,7 @@ {BC508D87-495F-4554-932D-DD68388B63CC} Win32Proj Game - 10.0.16299.0 + 10.0.17763.0