Mercurial > public > hwos_code
comparison src/icons.asm @ 604:ca4556fb60b9
bump to 2.99beta, work on 3.00 stable
author | heinrichsweikamp |
---|---|
date | Thu, 22 Nov 2018 19:47:26 +0100 |
parents | 653a3ab08062 |
children | c40025d8e750 |
comparison
equal
deleted
inserted
replaced
603:00b24fb4324d | 604:ca4556fb60b9 |
---|---|
1 ;============================================================================= | 1 ;============================================================================= |
2 ; | 2 ; |
3 ; File icons.asm | 3 ; File icons.asm V2.99c |
4 ; | 4 ; |
5 ; Tables for all OSTC icons. | 5 ; Tables for all OSTC icons. |
6 ; | 6 ; |
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. | 7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. |
8 ;============================================================================= | 8 ;============================================================================= |
9 ; HISTORY | 9 ; HISTORY |
10 ; 2011-05-24 : [jDG] Creation with icons for demo menus. | 10 ; 2011-05-24 : [jDG] Creation with icons for demo menus. |
11 | 11 |
12 icons_data CODE | 12 #include "hwos.inc" ; Mandatory header |
13 | 13 |
14 ; Dive mode warning icon | 14 icons_data CODE |
15 | |
16 ;============================================================================= | |
17 | |
18 ; dive mode warning icon | |
15 global dive_warning2_block | 19 global dive_warning2_block |
16 #include "../src/Icons/dive_warning2.inc" ;45x39 px | 20 #include "../src/Icons/dive_warning2.inc" ; 45x39 px |
21 | |
17 ; small warning icon | 22 ; small warning icon |
18 ; global warning_block | 23 ; global warning_block |
19 ;#include "../src/Icons/warning.inc" ;25x22 px | 24 ;#include "../src/Icons/warning.inc" ; 25x22 px |
25 | |
26 IFDEF _ostc_logo | |
20 global ostc_logo_block | 27 global ostc_logo_block |
21 ; OSTC scribble | 28 ; OSTC logo |
22 #include "../src/Icons/ostc_logo.inc" ;220x61 px | 29 #include "../src/Icons/ostc_logo.inc" ; 220x61 px |
30 ENDIF | |
23 | 31 |
24 END | 32 END |