diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-18 15:08:26 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-18 15:08:26 +0100 |
| commit | cb25e077f99e608ecce1f8358ea9f33421a1e810 (patch) | |
| tree | 3da1e920bae17c9ae840bb1ec7e40004deaf5abc /src/main.c | |
| parent | 0551f13f0ee258d6325285e20833328950e18bbc (diff) | |
| download | box64-cb25e077f99e608ecce1f8358ea9f33421a1e810.tar.gz box64-cb25e077f99e608ecce1f8358ea9f33421a1e810.zip | |
[DYNAREC] Added CC 'Native call' and 0F 1F NOP opcodes
Diffstat (limited to 'src/main.c')
| -rwxr-xr-x | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 0811136c..c14591b0 100755 --- a/src/main.c +++ b/src/main.c @@ -933,7 +933,8 @@ int main(int argc, const char **argv, const char **env) { if(ld_preload.size) { for (int i=0; i<ld_preload.size; ++i) { if(AddNeededLib(NULL, NULL, 0, ld_preload.paths[i], my_context, emu)) { - printf_log(LOG_INFO, "Warning, cannot pre-load lib: \"%s\"\n", ld_preload.paths[i]); + if(!strstr(ld_preload.paths[i], "vgpreload_")) + printf_log(LOG_INFO, "Warning, cannot pre-load lib: \"%s\"\n", ld_preload.paths[i]); } } } |