[Jrisk-cvs] SF.net SVN: domination-code:[2539] Domination
Brought to you by:
yuranet
|
From: <yu...@us...> - 2024-05-08 18:17:00
|
Revision: 2539
http://sourceforge.net/p/domination/code/2539
Author: yuranet
Date: 2024-05-08 18:16:58 +0000 (Wed, 08 May 2024)
Log Message:
-----------
run without class fix
Modified Paths:
--------------
Domination/ChangeLog.txt
Domination/sharedUI/src_mapstore_lobby/net/yura/domination/audio/SimpleAudio.java
Modified: Domination/ChangeLog.txt
===================================================================
--- Domination/ChangeLog.txt 2024-05-08 17:41:22 UTC (rev 2538)
+++ Domination/ChangeLog.txt 2024-05-08 18:16:58 UTC (rev 2539)
@@ -14,7 +14,7 @@
Increment1GUI: 2
CommandLine: 2
-1.3.1 (08.05.2024) (svn rev 2538)
+1.3.1 (08.05.2024) (svn rev 2539)
Sounds effects and music! (memory leak fixed this time)
Can change game speed in Option dialog
Modified: Domination/sharedUI/src_mapstore_lobby/net/yura/domination/audio/SimpleAudio.java
===================================================================
--- Domination/sharedUI/src_mapstore_lobby/net/yura/domination/audio/SimpleAudio.java 2024-05-08 17:41:22 UTC (rev 2538)
+++ Domination/sharedUI/src_mapstore_lobby/net/yura/domination/audio/SimpleAudio.java 2024-05-08 18:16:58 UTC (rev 2539)
@@ -56,7 +56,7 @@
catch (Exception ex) {
startError(fileName, player, ex);
}
- catch (OutOfMemoryError oom) {
+ catch (Error oom) { // OutOfMemoryError and NoClassDefFoundError
outOfMemoryError = true;
startError(fileName, player, oom);
}
@@ -79,7 +79,7 @@
catch (Exception ex) {
startError(fileName, player, ex);
}
- catch (OutOfMemoryError oom) {
+ catch (Error oom) { // OutOfMemoryError and NoClassDefFoundError
outOfMemoryError = true;
startError(fileName, player, oom);
}
|