This commit is contained in:
Igor Timofeev 2017-04-05 11:31:07 +03:00
parent d7dd914712
commit a2245be1e7
2 changed files with 8 additions and 2 deletions

View File

@ -532,7 +532,7 @@
type="Application",
icon="IgorTimofeev/OpenComputers/master/Applications/GeoScan2/Icon.pic",
createShortcut="desktop",
version=1.04,
version=1.05,
resources={
{
name="Earth.pic",

View File

@ -8,7 +8,13 @@ local MineOSCore = require("MineOSCore")
--------------------------------------------------------------------------------------------------------------------
if not component.isAvailable("geolyzer") or not component.isAvailable("hologram") then GUI.error("This program requires a geolyzer and hologram projector to work!"); return end
if not component.isAvailable("geolyzer") then
GUI.error("This program requires a geolyzer to work!"); return
end
if not component.isAvailable("hologram") then
GUI.error("This program requires a hologram projector to work!"); return
end
component.gpu.setResolution(component.gpu.maxResolution())
buffer.start()