Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OneLoneCoder_ComandLineFPS_2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ class OneLoneCoder_UltimateFPS : public olcConsoleGameEngine

// Display Map & Player
for (int nx = 0; nx < nMapWidth; nx++)
for (int ny = 0; ny < nMapWidth; ny++)
for (int ny = 0; ny < nMapHeight; ny++)
Draw(nx+1, ny+1, map[ny * nMapWidth + nx]);
Draw(1 + (int)fPlayerY, 1 + (int)fPlayerX, L'P');

Expand Down