summaryrefslogtreecommitdiff
path: root/games/asc/files/patch-source::basestrm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'games/asc/files/patch-source::basestrm.cpp')
-rw-r--r--games/asc/files/patch-source::basestrm.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/games/asc/files/patch-source::basestrm.cpp b/games/asc/files/patch-source::basestrm.cpp
deleted file mode 100644
index 3ee6e84963a6..000000000000
--- a/games/asc/files/patch-source::basestrm.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-
-$FreeBSD$
-
---- source/basestrm.cpp.orig Tue Oct 1 16:11:44 2002
-+++ source/basestrm.cpp Fri Oct 18 15:04:21 2002
-@@ -1008,7 +1011,7 @@
- while (actpos2 < size) {
- if (datasize == 0)
- if ( excpt ) {
-- throw treadafterend ( getDeviceName() );
-+ goto except1;
- }
- else
- return actpos2;
-@@ -1028,6 +1031,9 @@
- }
-
- return actpos2;
-+
-+except1:
-+ throw treadafterend ( getDeviceName() );
- }
-
-
-@@ -1058,10 +1064,14 @@
- }
- else
- if (actmempos > memsize)
-- throw tinternalerror ( __FILE__, __LINE__ );
-+ goto except1;
-
- actpos2 += s;
- }
-+ return;
-+
-+except1:
-+ throw tinternalerror ( __FILE__, __LINE__ );
- }
-
-