Revert to targetting 9.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@771 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Ray Greenwell
2009-01-29 20:30:51 +00:00
parent 2af7ad1dcf
commit 4b4701b4aa
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -355,7 +355,7 @@
<!-- static-link-runtime-shared-libraries: statically link the libraries specified by the -runtime-shared-libraries-path option.--> <!-- static-link-runtime-shared-libraries: statically link the libraries specified by the -runtime-shared-libraries-path option.-->
<static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries> <static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
<!-- target-player: specifies the version of the player the application is targeting. Features requiring a later version will not be compiled into the application. The minimum value supported is "9.0.0".--> <!-- target-player: specifies the version of the player the application is targeting. Features requiring a later version will not be compiled into the application. The minimum value supported is "9.0.0".-->
<target-player>10.0.0</target-player> <target-player>9.0.115</target-player>
<!-- use-network: toggle whether the SWF is flagged for access to network resources--> <!-- use-network: toggle whether the SWF is flagged for access to network resources-->
<use-network>true</use-network> <use-network>true</use-network>
<!-- verify-digests: verifies the libraries loaded at runtime are the correct ones.--> <!-- verify-digests: verifies the libraries loaded at runtime are the correct ones.-->
+4 -4
View File
@@ -20,16 +20,16 @@ public class LoaderUtil
} catch (e1 :Error) { } catch (e1 :Error) {
// ignore // ignore
} }
try { // try {
loader.unloadAndStop(); // loader.unloadAndStop();
} catch (e2 :Error) { // } catch (e2 :Error) {
// hmm, maybe they are using FP9 still // hmm, maybe they are using FP9 still
try { try {
loader.unload(); loader.unload();
} catch (e3 :Error) { } catch (e3 :Error) {
// ignore // ignore
} }
} // }
} }
} }
} }