Skip to content

Commit

Permalink
Update V1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Okami115 committed Nov 27, 2022
1 parent 7f059d1 commit 863763f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MoonPatrol/MoonPatrol_OtrantoDario.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<AdditionalDependencies>raylib.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<PostBuildEvent>
<Command>call "$(SolutionDir)batch.bat" "$(SolutionDir)\res" "$(TargetDir)\res"</Command>
<Command>call "$(SolutionDir)batch.bat" "$(SolutionDir)res" "$(TargetDir)\res"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
Expand Down Expand Up @@ -136,7 +136,7 @@
<EntryPointSymbol>mainCRTStartup</EntryPointSymbol>
</Link>
<PostBuildEvent>
<Command>call "$(SolutionDir)batch.bat" "$(SolutionDir)\res" "$(TargetDir)\res"</Command>
<Command>call "$(SolutionDir)batch.bat" "$(SolutionDir)res" "$(TargetDir)\res"</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand Down
2 changes: 1 addition & 1 deletion MoonPatrol/src/GameManager/gameManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void executeGame()

extern bool isMultiplayer;

InitWindow(screenWidth, screenHeight, "Moon Patrol Chesog - OkamiDesu - V0.4");
InitWindow(screenWidth, screenHeight, "Moon Patrol Chesog - OkamiDesu - V1.0");
InitAudioDevice();
initTexturesAndMusic();
HideCursor();
Expand Down
2 changes: 1 addition & 1 deletion MoonPatrol/src/MenuStates/Gameplay/GamePlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ void drawGameplay()

drawParallax();

DrawText(TextFormat("V 0.4"), 5, 5, 10, RED);
DrawText(TextFormat("V 1.0"), 5, 5, 10, RED);

drawPlayer(player);

Expand Down
2 changes: 1 addition & 1 deletion MoonPatrol/src/MenuStates/MainMenu/mainMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void drawMenu(int screenWidth, int screenHeight,int& point)
ClearBackground(BLACK);

DrawTexture(MenuBackground, 0, 0, WHITE);
DrawText("V0.4", 5, 5, 10, RED);
DrawText("V1.0", 5, 5, 10, RED);

if (point == (int)MenuStates::Game)
{
Expand Down

0 comments on commit 863763f

Please sign in to comment.