Displaying 2 results from an estimated 2 matches for "game_nam".
Did you mean:
game_name
2010 Aug 14
1
Re: Game that worked in .24 doesn't in .25 and .26
[quote="qwertymn"]what happens if you disable wbemprox.dll in wine-1.1.26
(so run the app like WINEDLLOVERRIDES="wbemprox=""" wine game_name.exe )[/quote]
I'm trying to play "The Curse of Monkey Island" and getting the same error message (dsalsa:IDsDriverBufferImpl_SetVolumePan), but slightly different symptoms.
Starting the game with this command fixed the problem for me, so the problem does appear to be in around wbe...
2012 Feb 21
10
Search of multiple columns
I am currently writing a search method for my rails applications and at
the moment it works fine. I have the following in my game.rb:
def self.search(search)
if search
find(:all, :conditions => [''game_name LIKE ? OR genre LIKE ? OR
console LIKE ?'', "%#{search}%", "#{search}", "#{search}"])
else
find(:all)
end
end
No that searches fine but my problem is that if there is a record in
game_name that has the words playstation in it will finish the search
th...