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