Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c979c980c1 | |||
| 3d943b641b | |||
| 215af6e3db | |||
| 7aef85851c | |||
| f7c24f5ab7 | |||
| 2ebd40b621 |
Binary file not shown.
@ -51,7 +51,7 @@ if fs.exists('src/tp6.c')
|
||||
# another dirty hack
|
||||
copy_tp6c = find_program('copy_tp6c.sh')
|
||||
|
||||
tp6c = custom_target(
|
||||
tp6c_target = [custom_target(
|
||||
'copy_tp6c',
|
||||
output: 'tp6c.o',
|
||||
input: tp6c_fake_exe.extract_all_objects(recursive: false),
|
||||
@ -60,10 +60,12 @@ if fs.exists('src/tp6.c')
|
||||
'@INPUT0@',
|
||||
'@OUTPUT0@', meson.current_source_dir() / 'blob/tp6c.o'
|
||||
]
|
||||
)
|
||||
)]
|
||||
tp6c_blob = []
|
||||
else
|
||||
message('Using precompiled tp6c blob. Refer to the readme for more details')
|
||||
tp6c = 'blob/tp6c.o'
|
||||
tp6c_target = []
|
||||
tp6c_blob = [ 'blob/tp6c.o' ]
|
||||
endif
|
||||
|
||||
shared_library(
|
||||
@ -71,7 +73,8 @@ shared_library(
|
||||
sources,
|
||||
res_header,
|
||||
res_object,
|
||||
objects: tp6c,
|
||||
tp6c_target,
|
||||
objects: tp6c_blob,
|
||||
include_directories: include_dir,
|
||||
name_prefix: ''
|
||||
)
|
||||
|
||||
@ -3,3 +3,12 @@
|
||||
|
||||
### 1.1.0
|
||||
- HSR support
|
||||
|
||||
### 1.1.9
|
||||
- Fixed a bug which could cause the game to crash in odd scenarios
|
||||
|
||||
### 1.1.10
|
||||
- Fixed a subtle bug introduced in 1.1.9
|
||||
|
||||
### 1.1.11
|
||||
- Fixed an additional issue introduced in 1.1.9
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
project('jadeite', 'c', version: '1.1.8')
|
||||
project('jadeite', 'c', version: '1.1.11')
|
||||
|
||||
nasm = find_program('nasm')
|
||||
gen_res = find_program('gen_resources.sh')
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"jadeite": {
|
||||
"version": "1.1.8"
|
||||
"version": "1.1.11"
|
||||
},
|
||||
"games": {
|
||||
"hi3rd": {
|
||||
|
||||
Reference in New Issue
Block a user