From bbabb3ae5b78dba323444e3f7fbfcc88d4cacddb Mon Sep 17 00:00:00 2001 From: Marco Nelissen Date: Wed, 23 Sep 2009 09:52:22 -0700 Subject: [PATCH] Fix the simulator. libhardware now needs a property named "default" to be set to the value "default", otherwise it won't fall back to the default implementation for a module. --- simulator/app/PropertyServer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/simulator/app/PropertyServer.cpp b/simulator/app/PropertyServer.cpp index 0047b5dd4..c94aa7577 100644 --- a/simulator/app/PropertyServer.cpp +++ b/simulator/app/PropertyServer.cpp @@ -147,6 +147,7 @@ void PropertyServer::SetDefaultProperties(void) { "debug.sf.showcpu", "0" }, { "debug.sf.showbackground", "0" }, { "debug.sf.showfps", "0" }, + { "default", "default" }, }; for (int i = 0; i < NELEM(propList); i++)