Your screenshot just means, that there is no file called "infinium" or containing the word on your mac or attached drives.
Maybe you already deleted the Game and therefore can't find it anymore? Did you try to search for "*strike*" or "*codex*", too? The developer is probably "Codex Worlds". Can you remember, if you installed the Game or the Demo with gog.com, Steam or something else?
You could check in Console App (in utilities folder) the "install.log" file to gain some more information about what has happened at the install time.
Alternatively in the "System Information" window from your first screenshot, there is an entry for protocols (probably "Historiques"). From there you can access install protocols (/var/log/install.log), too.
[doublepost=1493915037][/doublepost]
- search for files and folders
I don't think that will find something else.
But one could search for "file contents" either with EasyFind or in Terminal:
Code:
sudo grep -ir "infinium" /
EDIT: Yes
@Fishrrman, you were right. I completely forgot about case sensitivity of find!
Code:
sudo find / -iname "*infinium*"
This (-iname) ignores the case and should do, what you suggested to do with EasyFind.
The same goes for grep command, the "i" is case insensitive