Skip to content

Commit cf295a7

Browse files
committed
Version 0.7
1 parent 4e3ecce commit cf295a7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ Coded in C using the fantastic [CPCTelera library](https://lronaldo.github.io/cp
88

99
![](/promo/loading.png)
1010

11-
**Five level Demo version (v0.7) fully playable**. The full version will also have:
11+
**Demo version (v0.7) fully playable**. The full version will also have:
1212

13-
* 10+ Fiendish Levels
1413
* Sound Effects and Music
1514
* Enhanced Graphics and Animations
1615

@@ -37,6 +36,7 @@ The basis for this remake is the original port by Mosaik Software available [her
3736
*Version 0.7 (12/12/2023)*
3837

3938
* Added a difficulty toggle
39+
* Added the remaining levels (to make 10 in total)
4040

4141
*Version 0.6 (10/12/2023)*
4242

collateral/nibdx.tiled-session

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"selectedLayer": 0,
4242
"viewCenter": {
4343
"x": 151.86548602129145,
44-
"y": 84.05133817530597
44+
"y": 83.7329618943389
4545
}
4646
},
4747
"level-2.tmx": {
@@ -72,40 +72,40 @@
7272
"scale": 3,
7373
"selectedLayer": 0,
7474
"viewCenter": {
75-
"x": 161.66666666666666,
76-
"y": 9.666666666666686
75+
"x": 160,
76+
"y": 84
7777
}
7878
},
7979
"level-6.tmx": {
8080
"scale": 3.1409374999999997,
8181
"selectedLayer": 0,
8282
"viewCenter": {
8383
"x": 160.14326932643522,
84-
"y": 45.20943189732364
84+
"y": 84.05133817530597
8585
}
8686
},
8787
"level-7.tmx": {
8888
"scale": 3.1409374999999997,
8989
"selectedLayer": 0,
9090
"viewCenter": {
91-
"x": 205.989453785693,
92-
"y": 83.7329618943389
91+
"x": 160.14326932643522,
92+
"y": 84.05133817530597
9393
}
9494
},
9595
"level-8.tmx": {
9696
"scale": 3.1409374999999997,
9797
"selectedLayer": 0,
9898
"viewCenter": {
9999
"x": 160.14326932643522,
100-
"y": 83.7329618943389
100+
"y": 84.05133817530597
101101
}
102102
},
103103
"level-9.tmx": {
104104
"scale": 3.1409374999999997,
105105
"selectedLayer": 0,
106106
"viewCenter": {
107107
"x": 160.14326932643522,
108-
"y": 83.7329618943389
108+
"y": 84.05133817530597
109109
}
110110
},
111111
"sprites.tsx": {

nibdx.dsk

0 Bytes
Binary file not shown.

promo/instruct.png

-800 Bytes
Loading

promo/title.png

-106 Bytes
Loading

src/game.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ static bool g_play_level(const u8 level, const u8 gems) {
174174
u8 c_offset = g_options[1] ? 0 : 2;
175175
u8 gems_left = gems;
176176
dir_t dir = DIR_EAST;
177-
const u8 diff_c = g_options[0] ? 4 : 2;
177+
const u8 diff_c = g_options[0] ? 5 : 2;
178178
const u8 diff_mod = g_options[0] ? 1 : 10;
179179

180180
static const u16 controls[4][4] = {

0 commit comments

Comments
 (0)