This commit is contained in:
umjammer 2017-11-21 09:36:54 +09:00
parent a2139c12ea
commit 4d3949def5
13 changed files with 4281 additions and 4280 deletions

View File

@ -38,7 +38,7 @@ http://vavivavi.blogspot.com/
3. copy APPLE2E.ROM into .../AVCHD directory
4. copy your .dsk image into .../AVCHD directory
4. copy your .dsk or .nib image into .../AVCHD directory
5. modify .../AVCHD/appleii.properties
@ -101,7 +101,7 @@ http://vavivavi.blogspot.com/
0.12 09-Oct-2008
improve pad control (i fogot keyReleased() method calling at base ;-P)
improve pad control (i forgot keyReleased() method calling at base ;-P)
0.11 28-Sep-2008

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="Windows-31J"?>
<?xml version="1.0" encoding="UTf-8"?>
<!-- ////////////////////////////////////////////////////////////////////// -->
<!-- Copyright (c) 2008 by umjammer, All rights reserved. -->
@ -8,12 +8,13 @@
<!-- BD-J Apple II -->
<!-- -->
<!-- @author umjammer -->
<!-- @version 0.00 080912 nsano initial version -->
<!-- @version 0.00 080912 umjammer initial version -->
<!-- -->
<!-- ////////////////////////////////////////////////////////////////////// -->
<project name="bdj Apple II" default="run" basedir=".">
<property environment="env"/>
<property file="local.properties" />
<property name="dir.build" value="build"/>

View File

@ -886,7 +886,7 @@ System.err.println("mode: -> MODE_NORMAL");
final int KEY_SHIFT = -2;
int keyIndex;
/** normal, shift */
int[][] keyDatum = {
int[][] keyData = {
{ 0x1b, 0x1b }, // esc
{ -1, -1 }, // f1
{ -1, -1 },
@ -1007,7 +1007,7 @@ stat.clear();
}
}
private void keyPressed() {
int keyCode = keyDatum[keyIndex][shiftIndex];
int keyCode = keyData[keyIndex][shiftIndex];
switch (keyCode) {
case KEY_SHIFT:
shiftIndex = 1 - shiftIndex;