about summary refs log tree commit diff stats
path: root/src/main.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-18 15:08:26 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-18 15:08:26 +0100
commitcb25e077f99e608ecce1f8358ea9f33421a1e810 (patch)
tree3da1e920bae17c9ae840bb1ec7e40004deaf5abc /src/main.c
parent0551f13f0ee258d6325285e20833328950e18bbc (diff)
downloadbox64-cb25e077f99e608ecce1f8358ea9f33421a1e810.tar.gz
box64-cb25e077f99e608ecce1f8358ea9f33421a1e810.zip
[DYNAREC] Added CC 'Native call' and 0F 1F NOP opcodes
Diffstat (limited to 'src/main.c')
-rwxr-xr-xsrc/main.c3
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]);
             }            
         }
     }