freebsd-ports/games/lbreakout/files/patch-lbreakout__hiscore.h
Dmitry Marakasov 32a70a32ed - Remove useless REINPLACE
- Use @sample for highscore handling
- Support highscore patch longer than 32 bytes
- Don't use PTHREAD_LIBS
- Add LICENSE
- Drop @dirrm* from plist
2015-01-25 02:55:56 +00:00

20 lines
558 B
C++

--- lbreakout/hiscore.h.orig 2001-02-24 22:00:24.000000000 +0300
+++ lbreakout/hiscore.h 2015-01-25 05:37:12.000000000 +0300
@@ -60,7 +60,7 @@
protected:
HiScoreEntry *entries;
int entry_num;
- char filename[32];
+ char filename[1024];
public:
StandardHiScore(char* f);
StandardHiScore(FILE* f);
@@ -88,7 +88,7 @@
// maintains two tables: one per score, the other per level
class CompositeHiScore : public HiScore {
private:
- char filename[32];
+ char filename[1024];
LevelHiScore* pLevel;
StandardHiScore* pStandard;