Skip to content

Commit 410cae6

Browse files
authored
Merge pull request #315 from OneLoneCoder/develop
v2.22 Typo Fix
2 parents 99b0c51 + 734abe9 commit 410cae6

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
################################################################################
44

55
/.vs
6+
/utilities/olcUTIL_AffineView.h
7+
/utilities/olcUTIL_Maths.h

olcPixelGameEngine.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
olcPixelGameEngine.h
44
55
+-------------------------------------------------------------+
6-
| OneLoneCoder Pixel Game Engine v2.21 |
6+
| OneLoneCoder Pixel Game Engine v2.22 |
77
| "What do you need? Pixels... Lots of Pixels..." - javidx9 |
88
+-------------------------------------------------------------+
99
@@ -197,7 +197,7 @@
197197
198198
Author
199199
~~~~~~
200-
David Barr, aka javidx9, OneLoneCoder 2018, 2019, 2020, 2021, 2022
200+
David Barr, aka javidx9, (c) OneLoneCoder 2018, 2019, 2020, 2021, 2022
201201
*/
202202
#pragma endregion
203203

@@ -315,6 +315,7 @@
315315
+FillTexturedTriangle() - Software rasterizes a textured, coloured, triangle
316316
+FillTexturedPolygon() - Hijacks DecalStructure for configuration
317317
+olc::vf2d arguments for Sprite::Sample() functions
318+
2.22: = Fix typo on dragged file buffers for unicode builds
318319
319320
!! Apple Platforms will not see these updates immediately - Sorry, I dont have a mac to test... !!
320321
!! Volunteers willing to help appreciated, though PRs are manually integrated with credit !!
@@ -394,7 +395,7 @@ int main()
394395
#include <cstring>
395396
#pragma endregion
396397

397-
#define PGE_VER 221
398+
#define PGE_VER 222
398399

399400
// O------------------------------------------------------------------------------O
400401
// | COMPILER CONFIGURATION ODDITIES |
@@ -5574,7 +5575,7 @@ namespace olc
55745575
vFiles.push_back(std::string(buffer));
55755576
delete[] buffer;
55765577
#else
5577-
vFiles.push_back(std::string(dbuffer));
5578+
vFiles.push_back(std::string(dfbuffer));
55785579
#endif
55795580
}
55805581

0 commit comments

Comments
 (0)